home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / full / jbuild / setup / JBuilder / jsamples.z / test.jar / sunw / demo / test / BridgeTesterEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-06-04  |  753 b   |  31 lines

  1. package sunw.demo.test;
  2.  
  3. import java.util.EventObject;
  4.  
  5. public class BridgeTesterEvent extends EventObject {
  6.    protected String stringValue;
  7.    protected int intValue;
  8.  
  9.    BridgeTesterEvent(Object var1, String var2, int var3) {
  10.       super(var1);
  11.       this.stringValue = var2;
  12.       this.intValue = var3;
  13.    }
  14.  
  15.    public void setInformationValue(String var1) {
  16.       this.stringValue = var1;
  17.    }
  18.  
  19.    public void setIntValue(int var1) {
  20.       this.intValue = var1;
  21.    }
  22.  
  23.    public String getInformation() {
  24.       return this.stringValue;
  25.    }
  26.  
  27.    public int getIntValue() {
  28.       return this.intValue;
  29.    }
  30. }
  31.